home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / archivers / checkx / sources / include / sdi_defines.h < prev   
C/C++ Source or Header  |  1999-06-14  |  4KB  |  124 lines

  1. #ifndef SDI_DEFINES_H
  2. #define SDI_DEFINES_H
  3.  
  4. /* Includeheader
  5.  
  6.     Name:        SDI_defines
  7.     Versionstring:    $VER: SDI_defines.h 1.30 (06.05.1999)
  8.     Author:        SDI
  9.     Distribution:    PD
  10.     Description:    standard defines and macros and version string
  11.  
  12.  1.17  12.06.96 : RETURN_WARN instead of RETURN_ERROR in SDI_ENDCODE
  13.  1.18  06.07.96 : End: PrintFault behind end --> allows selecting output
  14.  1.19  21.08.96 : added __SASC __AMIGADATE__ support
  15.  1.20  24.08.96 : better SAS-C support
  16.  1.21  04.09.96 : changed error with SAS date having the brackets already
  17.  1.22  18.11.96 : converted to english, C++ comments to C ones
  18.  1.23  02.01.97 : corrected some stuff
  19.  1.24  17.03.97 : removed GetChar and other obsolete defines
  20.  1.25  08.10.97 : renamed defines, removed some defines
  21.  1.26  10.02.98 : made version string const
  22.  1.27  20.02.98 : added compiler independence stuff
  23.  1.28  25.06.98 : compiler independent stuff moved to SDI_compiler.h
  24.  1.29  01.09.98 : fixes for StormC Demo
  25.  1.30  06.05.99 : changed AUTHOR string
  26. */
  27.  
  28. #include <exec/types.h>
  29.  
  30. /* ========================= useable defines ============================ */
  31.  
  32. /*
  33.   SDI_ENDCODE        turn on generation of End function
  34.   SDI_ENDCODE_NOCTRLC    use End generation without CTRL_C check
  35.  
  36.   AUTHOR    program author - default is "by SDI"
  37.   DATE        programm creation date - default is automatically created
  38.   DISTRIBUTION    distribution form - default is "(PD) "
  39.   REVISION    revision number - default is "0"
  40.   VERSION    version number - default is "1"
  41. */
  42.  
  43. /* ======================= no need for <stdlib.h> ======================= */
  44.  
  45. #ifdef __cplusplus
  46.   extern "C"
  47. #endif
  48. extern void exit(int);
  49.  
  50. /* ============================ other macros ============================ */
  51.  
  52. /* <proto/exec.h>, <dos/dos.h> */
  53.  
  54. #define CTRL_C        (SetSignal(0L,0L) & SIGBREAKF_CTRL_C)
  55.  
  56. /* ================================= SAS C ============================== */
  57.  
  58. #define TestOS if(DOSBase->dl_lib.lib_Version < DosVersion)    \
  59.              exit(RETURN_FAIL)
  60.  
  61. /* A word about variable DosVersion: In my startup code for MaxonC++ I
  62. include use OpenLibrary("dos.library", DosVersion) instead of standard
  63. OpenLibrary("dos.library",0) call. If no DosVersion is given, this
  64. variable defaults to 33, else you can give the value by creating a global
  65. variable ULONG DosVersion = 37;. The program does not start, when the
  66. required DOS is not available. (Better then others, which crash) */
  67.  
  68. /* ===================== version string and EndCode ===================== */
  69.  
  70.  
  71. #ifdef NAME
  72.   #ifndef AUTHOR
  73.     #define AUTHOR "by Dirk Stöcker <stoecker@amigaworld.com>"
  74.   #endif
  75.   #ifndef VERSION
  76.     #define VERSION "1"
  77.   #endif
  78.   #ifndef REVISION
  79.     #define REVISION "0"
  80.   #endif
  81.   #ifndef DATE
  82.     #if defined(__MAXON__) || defined(__STORM__)
  83.       #define SDI_DATE "(" __DATE2__ ")"
  84.     #elif defined(__SASC)
  85.       #define SDI_DATE __AMIGADATE__
  86.     #elif defined(__GNUC__)
  87.       #define SDI_DATE "(" __DATE__ ")"
  88.     #endif
  89.   #else
  90.     #define SDI_DATE "(" DATE ")"
  91.   #endif
  92.  
  93.   #ifndef DISTRIBUTION
  94.     #define DISTRIBUTION "(PD) "
  95.   #endif
  96.   const STRPTR version = (STRPTR) "$VER: " NAME " " VERSION "." REVISION " "
  97.   SDI_DATE " " DISTRIBUTION AUTHOR;
  98. #endif /* NAME */
  99.  
  100. #if defined(SDI_ENDCODE) || defined(SDI_ENDCODE_NOCTRLC)
  101.   #include "SDI_compiler.h"
  102.  
  103.   INLINE void end(void);
  104.  
  105.   void End(UBYTE err)
  106.   {
  107.     #ifndef SDI_ENDCODE_NOCTRLC
  108.     if(CTRL_C)
  109.     {
  110.       err = RETURN_WARN;
  111.       SetIoErr(ERROR_BREAK);
  112.     }
  113.     #endif
  114.  
  115.     end();
  116.  
  117.     if(err)        PrintFault(IoErr(), 0);
  118.     exit(err);
  119.   }
  120. #endif /* SDI_ENDCODE && SDI_ENDCODE_NOCTRLC */
  121.  
  122. #endif /* SDI_DEFINES_H */
  123.  
  124.